home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / adapiso.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  1.4 KB  |  34 lines

  1. .TH ADAPISO
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. ADAPISO
  5.  
  6.  
  7.  
  8.  CurveType ADAPISO( SurfaceType Srf, NumericType Dir, NumericType Eps,
  9.                     NumericType FullIso, NumericType SinglePath )
  10.  
  11. Constructs a coverage to Srf using isocurve in the Dir direction,
  12. so that for any point p on surface Srf, there exists a point on one of
  13. the isocurves that is close to p within Eps. If FullIso, the
  14. extracted isocurves span the entire surface domain, otherwise they may
  15. span only a subset of the domain. If SinglePath, an approximation to
  16. a single path (Hamiltonian path) that visits all isocurves is constructed.
  17.  
  18.     srf = sbezier( list( list( ctlpt( E3, -0.5, -1.0,  0.0 ),
  19.                                ctlpt( E3,  0.4,  0.0,  0.1 ),
  20.                                ctlpt( E3, -0.5,  1.0,  0.0 ) ),
  21.                          list( ctlpt( E3,  0.0, -0.7,  0.1 ),
  22.                                ctlpt( E3,  0.0,  0.0,  0.0 ),
  23.                                ctlpt( E3,  0.0,  0.7, -0.2 ) ),
  24.                          list( ctlpt( E3,  0.5, -1.0,  0.1 ),
  25.                                ctlpt( E3, -0.4,  0.0,  0.0 ),
  26.                                ctlpt( E3,  0.5,  1.0, -0.2 ) ) ) );
  27.     aiso = ADAPISO( srf, COL, 0.1, FALSE, FALSE );
  28.  
  29. Constructs an adaptive isocurve approximation with tolerance of 0.1 to
  30. surface srf in direction COL. Isocurves are allowed to span a
  31. subset of the surface domain. No single path is needed.
  32.  
  33. The SinglePath option is currently not supported.
  34.